Skip to content

NET_SDK_GetCloudUpgradeInfo

Interface Definition

1
2
3
4
5
BOOL NET_SDK_GetCloudUpgradeInfo(
    LONG lUserID,
    CLOUD_UPGRADE_INFO* pCloudUpgradeInfo,
    LONG lBuffSize,
    LONG* pCuiCount);
1
2
3
4
5
public static extern bool NET_SDK_GetCloudUpgradeInfo(
    int lUserID,
    ref CLOUD_UPGRADE_INFO pCloudUpgradeInfo,
    int lBuffSize,
    ref int pCuiCount);

Function Description

Get cloud upgrade information

Parameter Description

Parameters Type Remark
lUserIDin LONG User ID, the return value of NET_SDK_Login or NET_SDK_LoginEx.
pCloudUpgradeInfoin CLOUD_UPGRADE_INFO* CLOUD_UPGRADE_INFO array.
lBuffSizein LONG CLOUD_UPGRADE_INFO array length.
pCuiCountout LONG* Actual CLOUD_UPGRADE_INFO array length.

Return Value

  • Type:BOOL

  • Remark:Returns TRUE if successful, FALSE if failed.

Remarks

None

Error Code